aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/websites/[websiteId]/page.tsx
blob: d4889c5dcc3516d31dcc1395164e5ef7a5abb1c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import type { Metadata } from 'next';
import { WebsitePage } from './WebsitePage';

export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
  const { websiteId } = await params;

  return <WebsitePage websiteId={websiteId} />;
}

export const metadata: Metadata = {
  title: 'Websites',
};